Pattern.Then(Func) method¶
Defined in
Type: PatternSystem.Reactive.Joins
Assembly: System.Reactive.dll
Applies to
netstandard2.0
public Plan<TResult> Then<TResult>(Func<TSource1, TSource2, TSource3, TSource4, TSource5, TSource6, TSource7, TResult> selector)
Summary: Matches when all observable sequences have an available element and projects the elements by invoking the selector function.
Type parameters
| Name | Description |
|---|---|
TResult | The type of the elements in the result sequence, returned by the selector function. |
Parameters
| Name | Type | Description |
|---|---|---|
selector | Func | Selector that will be invoked for elements in the source sequences. |
Returns: Plan
Exceptions
| Type | Condition |
|---|---|
| System.ArgumentNullException | selector is null. |